<class 'sqlite3.OperationalError'> | Python 2.7.18: /bin/python2 Fri Nov 22 05:41:26 2024 |
A problem occurred in a Python script. Here is the sequence of function calls leading up to the error, in the order they occurred.
/home/marknnrq/file-extension.net/seeker/seeker.py in <module>() |
293 |
294 |
295 |
296 if __name__ == "__main__": |
=> 297 main() |
main = <function main> |
/home/marknnrq/file-extension.net/seeker/seeker.py in main() |
222 |
223 ts = clock() |
=> 224 results = seeker_query(qext, qand, qor, qnot) |
225 te = clock() |
226 |
results undefined, global seeker_query = <function seeker_query>, qext = 'SPFX) - DUPLICATE', qand = [], qor = [], qnot = [] |
/home/marknnrq/file-extension.net/seeker/seeker.py in seeker_query(qext='SPFX) - DUPLICATE', qand=[], qor=[], qnot=[]) |
200 res = [] |
201 conn = sqlite3.connect("seeker.db3") |
=> 202 for row in conn.execute(sqlbody, (fts_query,)): |
203 res.append(row) |
204 conn.close() |
row undefined, conn = <sqlite3.Connection object>, conn.execute = <built-in method execute of sqlite3.Connection object>, sqlbody = '\n select ext, ftype, site, extra\n from see... where\n (seeker match ?)\n limit 150\n ', fts_query = 'ext:SPFX) - DUPLICATE ' |
<class 'sqlite3.OperationalError'>: malformed MATCH expression: [ext:SPFX) - DUPLICATE ]
args =
('malformed MATCH expression: [ext:SPFX) - DUPLICATE ]',)
message =
'malformed MATCH expression: [ext:SPFX) - DUPLICATE ]'